home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / prefs / font.inc next >
Text File  |  1998-06-24  |  384b  |  22 lines

  1. include "inc/exec/types.inc";
  2. include "inc/libraries/iffparse.inc";
  3. include "inc/graphics/text.inc";
  4.  
  5. def FONTNAMESIZE = (128);
  6.  
  7. struct FontPrefs is
  8.   fp_Reserved[3]:long;
  9.   fp_Reserved2:uword;
  10.   fp_Type:uword;
  11.   fp_FrontPen:ubyte;
  12.   fp_BackPen:ubyte;
  13.   fp_DrawMode:ubyte;
  14.   fp_TextAttr:TextAttr;
  15.   fp_Name[128]:byte;
  16. ;
  17.  
  18. def FP_WBFONT = 0;
  19. def FP_SYSFONT = 1;
  20. def FP_SCREENFONT = 2;
  21.  
  22.